/*!
 * @file        readme.txt
 *
 * @brief       This file is routine instruction
 *
 * @version     V1.0.2
 *
 * @date        2022-06-23
 *
 * @attention
 *
 *  Copyright (C) 2021-2022 Geehy Semiconductor
 *
 *  You may not use this file except in compliance with the
 *  GEEHY COPYRIGHT NOTICE (GEEHY SOFTWARE PACKAGE LICENSE).
 *
 *  The program is only for reference, which is distributed in the hope
 *  that it will be usefull and instructional for customers to develop
 *  their software. Unless required by applicable law or agreed to in
 *  writing, the program is distributed on an "AS IS" BASIS, WITHOUT
 *  ANY WARRANTY OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the GEEHY SOFTWARE PACKAGE LICENSE for the governing permissions
 *  and limitations under the License.
 */

&par Example Description

This example shows how to synchronize TMR peripherals in parallel mode.

  - parallel mode:
  - TMR2 Master for TMR3 and TMR4, Config PWM Mode and TMR2 Update event is used as Trigger Output
  - TMR3 is slave for TMR2,
  - Config PWM Mode
  - The ITR1(TMR2) is used as input trigger 
  - TMR4 is slave for TMR2,
  - Config PWM Mode
  - The ITR1(TMR2) is used as input trigger

  - The TMR2 peripherals clock is 84 MHz.

  - The Master Timer TMR2 frequency :
  - TMR2 frequency = (84M)/ (127 + 1) = 656.250 KHz 
  - duty cycle = 64/(127 + 1) = 50%.

  - The TMR3 is running at:
  - (656.250 KHz)/ (3 + 1) = 164.0625 KHz and a 
  - duty cycle = 2/(3 + 1) = 50%

  - The TMR4 is running at:
  - (656.250 KHz)/ (1 + 1) = 328.125 KHz 
  - duty cycle = 1/(1 + 1) = 50%  

&par Hardware Description

  - using TMR2 CHANNEL1(PA0) to output PWM
  - using TMR3 CHANNEL1(PB4) to output PWM
  - using TMR4 CHANNEL1(PB6) to output PWM

&par Directory contents

  - TMR/TMR_ParallelSynchro/Source/apm32f4xx_int.c        Interrupt handlers
  - TMR/TMR_ParallelSynchro/Source/main.c                       Main program

&par IDE environment

  - MDK-ARM V5.36
  - EWARM V8.50.5.26295

&par Hardware and Software environment

  - This example runs on APM32F407 MINI Devices.